home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
gnulib
/
libsrc98.zoo
/
sgtty.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-05-31
|
252 b
|
22 lines
/*
* Written by Eric R. Smith for the Atari ST
*/
#include <ioctl.h>
int
stty(fd, _tty)
int fd;
struct sgttyb *_tty;
{
return ioctl(fd, TIOCSETP, _tty);
}
int
gtty(fd, _tty)
int fd;
struct sgttyb *_tty;
{
return ioctl(fd, TIOCGETP, _tty);
}